type net/http.muxEntry
9 uses
net/http (current package)
servemux121.go#L41: m map[string]muxEntry
servemux121.go#L42: es []muxEntry // slice of entries sorted from longest to shortest.
servemux121.go#L46: type muxEntry struct {
servemux121.go#L67: mux.m = make(map[string]muxEntry)
servemux121.go#L69: e := muxEntry{h: handler, pattern: pattern}
servemux121.go#L80: func appendSorted(es []muxEntry, e muxEntry) []muxEntry {
servemux121.go#L89: es = append(es, muxEntry{}) // try to grow the slice in place, any entry works.
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |